home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / iputils-tracepath.postinst < prev    next >
Text File  |  2009-05-11  |  274b  |  14 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = configure ]; then
  6.     update-alternatives \
  7.         --install /usr/bin/traceroute6 traceroute6 /usr/bin/traceroute6.iputils 100 \
  8.         --slave /usr/share/man/man8/traceroute6.8.gz traceroute6.8.gz /usr/share/man/man8/traceroute6.iputils.8.gz
  9. fi
  10.  
  11.  
  12.  
  13. exit 0
  14.